home *** CD-ROM | disk | FTP | other *** search
- /* The <grp.h> header is used for the getgrid() and getgrname() calls. */
-
- #ifndef _GRP_H
- #define _GRP_H
-
- struct group {
- char *gr_name; /* the name of the group */
- char *gr_passwd; /* the group passwd */
- gid_t gr_gid; /* the numerical group ID */
- char **gr_mem; /* a vector of pointers to the members */
- };
-
- /* Function Prototypes. */
- #ifndef _ANSI_H
- #include <ansi.h>
- #endif
-
- _PROTOTYPE( struct group *getgrgid, (int __gid) );
- _PROTOTYPE( struct group *getgrname, (char *__name) );
-
- #endif /* _GRP_H */
-